home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / MouseInfo 1.0 / MouseInfo.MAMake < prev    next >
Encoding:
Text File  |  1992-04-29  |  3.0 KB  |  93 lines  |  [TEXT/MPS ]

  1. #---------------------------------------------------------------------------------------------------
  2. #                                                                                                   |
  3. #    File:            MouseInfo.MAMake                                                                |
  4. #                                                                                                   |
  5. #    Description:    Makefile for MouseInfo.                                                           |
  6. #                                                                                                   |
  7. #                                                                                                   |
  8. #    Copyright © 1992 by Apple Computer, Inc.  All rights reserved.                                    | 
  9. #    Kent Sandvik DTS                                                                               |
  10. #    Version Info (latest first):
  11. #
  12. #    <1>        khs        1.0        First final version
  13. #---------------------------------------------------------------------------------------------------
  14.  
  15.  
  16. #---------------------------------------------------------------------------------------------------
  17. #    List here the Application's Name
  18.  
  19. AppName = MouseInfo
  20.  
  21.  
  22. #---------------------------------------------------------------------------------------------------
  23. #    List resource files that the Rez file includes if you want to include
  24. #    more or less than the standard set (commented out, but it's good to have for the future)
  25.  
  26. #OtherRsrcFiles = ∂
  27. #    "{SrcApp}views.rsrc"
  28.  
  29.  
  30. #---------------------------------------------------------------------------------------------------
  31. #    List any additional interfaces that your application is dependent on
  32.  
  33. OtherInterfaces =  ∂
  34.     "{SrcApp}IncludeFiles.h" ∂
  35.     "{SrcApp}ResourceConstants.h" ∂
  36.     "{SrcApp}UMouseDocument.h" ∂
  37.     "{SrcApp}UMenuedWindow.h" ∂
  38.     "{SrcApp}UMouseTrackBehavior.h" ∂
  39.     "{SrcApp}UAppFrameAdorner.h" ∂
  40.     "{SrcApp}About.h"
  41.     
  42.  
  43. #---------------------------------------------------------------------------------------------------
  44. #    Name any other object files to link in
  45.  
  46. OtherLinkFiles = ∂
  47.     "{ObjApp}UMouseDocument.cp.o" ∂
  48.     "{ObjApp}UMenuedWindow.cp.o" ∂
  49.     "{ObjApp}UMouseTrackBehavior.cp.o" ∂
  50.     "{ObjApp}UAppFrameAdorner.cp.o" ∂
  51.     "{ObjApp}About.cp.o"
  52.  
  53.  
  54. #---------------------------------------------------------------------------------------------------
  55. #    Express any additional dependencies for separate compilations.
  56. #    Include dependencies for the MacApp and Building block interfaces
  57. #    if you are dependent on them
  58.  
  59. #    In this case we have a 'lazy dependency graph' - i.e. a very simple
  60. #    and direct dependency where only the directly needed files are referenced
  61. #    The first cut was done using MakeMake (Developer CD)
  62.  
  63.  
  64. "{ObjApp}UMouseInfo.cp.o" ƒ ∂
  65.         UMouseInfo.h IncludeFiles.h ∂
  66.         {MacAppIntf} ∂
  67.         {BuildingBlocksIntf}
  68.  
  69. "{ObjApp}UMouseDocument.cp.o" ƒ ∂
  70.         UMouseDocument.h UMouseInfo.h IncludeFiles.h ∂
  71.         {MacAppIntf} ∂
  72.         {BuildingBlocksIntf}
  73.  
  74. "{ObjApp}UMenuedWindow.cp.o" ƒ ∂
  75.         UMouseDocument.h UMouseInfo.h IncludeFiles.h ∂
  76.         {MacAppIntf} ∂
  77.         {BuildingBlocksIntf}
  78.  
  79. "{ObjApp}UMouseTrackBehavior.cp.o" ƒ ∂
  80.         UMouseTrackBehavior.h IncludeFiles.h ∂
  81.         {MacAppIntf} ∂
  82.         {BuildingBlocksIntf}
  83.  
  84. "{ObjApp}UAppFrameAdorner.cp.o" ƒ ∂
  85.         UAppFrameAdorner.h  IncludeFiles.h ∂
  86.         {MacAppIntf} ∂
  87.         {BuildingBlocksIntf}
  88.  
  89. "{ObjApp}About.cp.o" ƒ ∂
  90.          About.h ∂
  91.         {MacAppIntf} ∂
  92.         {BuildingBlocksIntf}
  93.